home *** CD-ROM | disk | FTP | other *** search
/ GFX Sensations 1 / Graphic Sensations - Volume 1.iso / tools / amiga / 3d_tools / irit40s.lha / Irit / prsr_lib / makefile.os2 < prev    next >
Encoding:
Makefile  |  1993-12-30  |  1.3 KB  |  37 lines

  1. #
  2. # This is the make file for the prsr. lib subdirectory (OS2, gcc 2.1, gnumake).
  3. #
  4. #                Gershon Elber, Aug 1991
  5. #
  6.  
  7. include ..\makeflag.os2
  8.  
  9. OBJS = allocate.o iritprsr.o iritprsb.o attribut.o ip_cnvrt.o \
  10.     ip_fatal.o ip_procs.o soc_srvr.o soc_clnt.o
  11.  
  12. libprsr.a: $(OBJS)
  13.     -$(RM) libprsr.a
  14.     ar rc libprsr.a $(OBJS)
  15.  
  16. install: libprsr.a
  17.     $(CP) libprsr.a $(LIB_DIR)
  18.     ar s $(LIB_DIR)/libprsr.a
  19.     $(CP) *.h $(INC_DIR)
  20.  
  21. soc_srvr.exe: soc_srvr.c
  22.     $(CC) $(CFLAGS) -DDEBUG_SERVER -DOS2GCC -I. -I$(INC_DIR) -c soc_srvr.c
  23.     $(CC) $(CFLAGS) -o soc_srvr.exe soc_srvr.o $(LIBS) $(MORELIBS) -lm
  24.     rm soc_srvr.o
  25.  
  26. # Dependencies starts here - do not touch, generated automatically.
  27. allocate.o:    iritprsr.h allocate.h iritprsr.h attribut.h iritprsr.h
  28. ami_clnt.o:    irit_soc.h iritprsr.h allocate.h iritprsr.h amiga.h
  29. ami_srvr.o:    irit_soc.h iritprsr.h allocate.h iritprsr.h amiga.h
  30. attribut.o:    iritprsr.h attribut.h iritprsr.h allocate.h iritprsr.h
  31. ip_cnvrt.o:    iritprsr.h allocate.h iritprsr.h ip_cnvrt.h iritprsr.h attribut.h iritprsr.h
  32. ip_fatal.o:    iritprsr.h allocate.h iritprsr.h attribut.h iritprsr.h
  33. ip_procs.o:    attribut.h iritprsr.h iritprsr.h
  34. iritprsr.o:    iritprsr.h allocate.h iritprsr.h attribut.h iritprsr.h irit_soc.h iritprsr.h allocate.h iritprsr.h
  35. soc_clnt.o:    irit_soc.h iritprsr.h allocate.h iritprsr.h
  36. soc_srvr.o:    irit_soc.h iritprsr.h allocate.h iritprsr.h
  37.